libreoffice.git
21 months agoMerge libreoffice (4:7.4.7-1+deb12u3) import into refs/heads/workingbranch
Rene Engelhard [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Merge libreoffice (4:7.4.7-1+deb12u3) import into refs/heads/workingbranch

21 months ago[PATCH] Blind fix for Linux 32-bit builds
Stephan Bergmann [Fri, 8 Mar 2024 07:38:44 +0000 (08:38 +0100)]
[PATCH] Blind fix for Linux 32-bit builds

...which, according to
<https://lists.freedesktop.org/archives/libreoffice/2024-March/091666.html> "32
bit build failure (smb, narrowing)", started to fail with

> /<<PKGBUILDDIR>>/sal/osl/unx/file.cxx: In function ‘void osl_file_adjustLockFlags(const rtl::OString&, int*, sal_uInt32*)’:
> /<<PKGBUILDDIR>>/sal/osl/unx/file.cxx:71:26: error: narrowing conversion of ‘4283649346’ from ‘unsigned int’ to ‘int’ [-Wnarrowing]
>     71 | #define CIFS_SUPER_MAGIC 0xFF534D42
>        |                          ^~~~~~~~~~
> /<<PKGBUILDDIR>>/sal/osl/unx/file.cxx:795:14: note: in expansion of macro ‘CIFS_SUPER_MAGIC’
>    795 |         case CIFS_SUPER_MAGIC:
>        |              ^~~~~~~~~~~~~~~~

etc.  My Fedora 39 "Linux man-pages 6.05" statfs(2) man page explains about the
struct statfs f_type field of __fsword_t type:  "The __fsword_t type used for
various fields in the statfs structure definition is a glibc internal type, not
intended for public use.  This leaves the programmer in a bit of a conundrum
when trying to copy or compare these fields to local variables in a program.
Using unsigned int for such variables suffices on most systems."  But the
underlying __FSWORD_T_TYPE looks like it is actually defined as a signed type in
/usr/include/bits/typesizes.h.

Change-Id: Ida3ae84031c4e48b0d6e69d76b66b4e4facfa1ae

Gbp-Pq: Name fix-32bit-build.diff

21 months agotdf#55004 Fix backup copy creation for files on mounted samba shares
Kevin Ottens [Fri, 2 Feb 2024 14:39:36 +0000 (15:39 +0100)]
tdf#55004 Fix backup copy creation for files on mounted samba shares

There is an unfortunate interaction between file locking and backup
creation at save time.

openFilePath has logic to lock a file when opening. This goes through
fcntl to set a write lock on the file. Later on, when the user wants to
save changes, a backup copy might be created (very likely now since this
is the defaults in the settings). To create this backup, the file is
opened again for reading. Unfortunately this open call fails due to the
lock (even though it is a write lock).

This commit changes the behavior. osl_file_adjustLockFlags now checks if
the file is on a mounted samba share. If that's the case we force the
osl_File_OpenFlag_NoLock flag. No issue is then exhibited at backup
creation, allowing the save to proceed properly.

Change-Id: Ieab252f9f68598834e13339fc5fcea440f0a4c2f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162935
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Gbp-Pq: Name Fix-backup-copy-creation-for-files-on-mounted-samba-shares.diff

21 months agoadd notify for script use
Caolán McNamara [Wed, 27 Mar 2024 17:07:20 +0000 (17:07 +0000)]
add notify for script use

Change-Id: I84af197cec7755f6803a578e1e21c03966ad5f3e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165412
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Gbp-Pq: Name add-notify-for-script-use.diff

21 months agowork-around-expired-certificiate-in-test
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
work-around-expired-certificiate-in-test

Gbp-Pq: Name work-around-expired-certificiate-in-test.diff

21 months agoreuse AllowedLinkProtocolFromDocument in impress/draw
Caolán McNamara [Wed, 22 Nov 2023 21:14:41 +0000 (21:14 +0000)]
reuse AllowedLinkProtocolFromDocument in impress/draw

Change-Id: I73ca4f087946a45dbf92d69a0dc1e769de9b5690
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159843
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit f0942eed2eb328b04856f20613f5226d66b66a20)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159759
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159884
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name reuse-AllowedLinkProtocolFromDocument-2.diff

21 months agoreuse AllowedLinkProtocolFromDocument in writer
Caolán McNamara [Wed, 15 Nov 2023 11:39:24 +0000 (11:39 +0000)]
reuse AllowedLinkProtocolFromDocument in writer

reorg calc hyperlink check to reuse elsewhere

Change-Id: I20ae3c5df15502c3a0a366fb4a2924c06ffac3d0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159487
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit e6a7537762e19fde446441edd10d301f9b37ce75)

reuse AllowedLinkProtocolFromDocument in writer

Change-Id: Iacf5e313fc6ca5f7d69ca6986a036f0e1ab1f2a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159488
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 32535dfa82200b54296838b52285c054fbe5e51d)

combine these hyperlink dispatchers into one call

Change-Id: Icb7822e811013de648ccf2fbb23a5f0be9e29bb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159489
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 0df175ccc6ea542bc5801f631ff72bed187042eb)

we can have just one LoadURL for writer

Change-Id: Ia0162ee1c275292fcf200bad4662e4c2c6b7b972
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159557
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 521ca9cf6acbae96cf95d9740859c9682212013d)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159858
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
(cherry picked from commit e32b8601dbd63cf01497889601d6c9c1241106d6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159883

Gbp-Pq: Name reuse-AllowedLinkProtocolFromDocument-1.diff

21 months agodefault to ignoring libreoffice special-purpose protocols in calc hyperlink
Caolán McNamara [Fri, 3 Nov 2023 17:26:25 +0000 (17:26 +0000)]
default to ignoring libreoffice special-purpose protocols in calc hyperlink

Change-Id: Ib9f62be3acc05f24ca234dec0fec21e24579e9de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158911
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit b6062623b4d69c79e90e9365ac7c5e7f11986793)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159045
Reviewed-by: Eike Rathke <erack@redhat.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159882
Tested-by: Miklos Vajna <vmiklos@collabora.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name ignore-LO-special-purpose-hyperlinks-per-default.diff

21 months agowarn about exotic protocols as well
Caolán McNamara [Sat, 4 Nov 2023 19:57:51 +0000 (19:57 +0000)]
warn about exotic protocols as well

Change-Id: I50dcf4f36cd20d75f5ad3876353143268740a50f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151834
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 1305f70cff8a81a58a5a6d9c96c5bb032005389e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159034
Reviewed-by: Eike Rathke <erack@redhat.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159881
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name warn-about-exotic-protocols-as-well.diff

21 months agoadd some protocols that don't make sense as floating frame targets
Caolán McNamara [Fri, 3 Nov 2023 17:14:26 +0000 (17:14 +0000)]
add some protocols that don't make sense as floating frame targets

Change-Id: Id900a5eef248731d1184c1df501a2cf7a2de7eb9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158910
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 11ebdfef16501c6d35c3e3d0d62507f706557c71)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158900
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit bab433911bdecb344f7ea94dbd00690241a08c54)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159582

Gbp-Pq: Name floating-frame-targets-unneeded-protocols.diff

21 months agoescape url passed to gstreamer
Caolán McNamara [Fri, 3 Nov 2023 14:20:07 +0000 (14:20 +0000)]
escape url passed to gstreamer

Change-Id: I3c93ee34800cc8563370f75ef3ef6f8a9220e6ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158894
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit f41dcadf6492a6ffd32696d50f818e44355b9ad9)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159583

Gbp-Pq: Name escape-url-passed-to-gstreamer.diff

21 months ago[PATCH] Remove dependency on BitArray.h from zxing-1.2.0
Brett T. Warden [Fri, 2 Dec 2022 20:06:35 +0000 (12:06 -0800)]
[PATCH] Remove dependency on BitArray.h from zxing-1.2.0

In zxing-1.4.0, numerous headers are no longer public. Rework the
ConvertToSVGFormat method so it uses bitmatrix.get instead of
bitmatrix.getRow, similar to the ToSVG method in zxing itself.

See https://github.com/zxing-cpp/zxing-cpp/issues/361

Gbp-Pq: Name 0004-Remove-dependency-on-BitArray.h-from-zxing-1.2.0.patch

21 months agoi18n: fix build with Boost 1.81.0
Đoàn Trần Công Danh [Sun, 27 Nov 2022 11:59:24 +0000 (18:59 +0700)]
i18n: fix build with Boost 1.81.0

Boost.Locale since 1.81.0 switch to enum classes for facet type [1].
Switch our resource manager accordingly.

1: https://github.com/boostorg/locale/commit/e5ed439ea39a4de915e9fb939cca95cae7d9d8d1

Change-Id: Ief215363ceb79b2019606b20a7cde55c8df6a042
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143343
Reviewed-by: Heiko Becker <heirecka@exherbo.org>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
(cherry picked from commit 23dcd4339428e4080029ec5ae658e75f01e79a62)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144310
Reviewed-by: Danh Doan <congdanhqx@gmail.com>
Tested-by: Jenkins
Gbp-Pq: Name boost-1.81.diff

21 months agofix-system-libfixmath
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
fix-system-libfixmath

Gbp-Pq: Name fix-system-libfixmath.diff

21 months agodragonbox-1.1.3
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
dragonbox-1.1.3

Gbp-Pq: Name dragonbox-1.1.3.diff

21 months agoRelated: tdf#150011 Add HRK Croatian Kuna to Euro conversion wizard
Eike Rathke [Fri, 22 Jul 2022 20:17:11 +0000 (22:17 +0200)]
Related: tdf#150011 Add HRK Croatian Kuna to Euro conversion wizard

Maybe just for completeness, it's removed from menu but might be
callable as macro.

Change-Id: Iade0be845186d3deb2f00f4aaa230c0b344cea72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137372
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Gbp-Pq: Name hrk-euro.diff

21 months agodo-not-ABORT_ON_NON_APPLICATION_FONT_USE
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
do-not-ABORT_ON_NON_APPLICATION_FONT_USE

Gbp-Pq: Name do-not-ABORT_ON_NON_APPLICATION_FONT_USE.diff

21 months agomoreIconsDialog-accesses-internet
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
moreIconsDialog-accesses-internet

Gbp-Pq: Name moreIconsDialog-accesses-internet.diff

21 months agoExplicitly set fpu mode on armhf
Rico Tzschichholz [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Explicitly set fpu mode on armhf

Gbp-Pq: Name arm-fp-mode.diff

21 months agotemporarily-disable-test-metadata-test
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
temporarily-disable-test-metadata-test

Gbp-Pq: Name temporarily-disable-test-metadata-test.diff

21 months agoSupport tofu+pgp trust model in GnuPG
Benjamin Barenblat [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Support tofu+pgp trust model in GnuPG

Bug-Debian: https://bugs.debian.org/955271
Forwarded: no

GnuPG supports a trust-on-first-use layer that sits on top of the
standard PGP trust model. If this is enabled, 'gpg --list-keys' needs
write and lock permissions on the TOFU database to return any useful
data. Allow this access through AppArmor.

Gbp-Pq: Name apparmor-gnupg-tofu.diff

21 months agoapparmor-updates
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
apparmor-updates

Gbp-Pq: Name apparmor-updates.diff

21 months ago[PATCH] Resolves: rhbz#1432468 disable opencl by default
Caolán McNamara [Mon, 27 Mar 2017 10:47:01 +0000 (11:47 +0100)]
[PATCH] Resolves: rhbz#1432468 disable opencl by default

Change-Id: Ie037fcabdd219f195425979dd721501fb5527573

Gbp-Pq: Name no-opencl-per-default.diff

21 months agodisable-shortcuts_tab_navigation-uitest
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
disable-shortcuts_tab_navigation-uitest

Gbp-Pq: Name disable-shortcuts_tab_navigation-uitest.diff

21 months agoadd-access2base-doc
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
add-access2base-doc

Gbp-Pq: Name add-access2base-doc.diff

21 months agoAdd safer float comparisons to bridgetest equals()
Marcus Tomlinson [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Add safer float comparisons to bridgetest equals()

Bug-Ubuntu: https://launchpad.net/bugs/1832360

Gbp-Pq: Name fix-flaky-bridgetest.diff

21 months agoapparmor-opencl
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
apparmor-opencl

apparmor: Add opencl support

AppArmor in Debian Buster now has OpenCL abstractions.

Include OpenCL abstractions to fix OpenCL usage in Calc.

Gbp-Pq: Name apparmor-opencl.diff

21 months ago[PATCH] mariadb
Markus Koschany [Fri, 9 Nov 2018 22:06:15 +0000 (23:06 +0100)]
[PATCH] mariadb

Gbp-Pq: Name use-mariadb-java-instead-of-mysql-java.diff

21 months agodisableClassPathURLCheck
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
disableClassPathURLCheck

Gbp-Pq: Name disableClassPathURLCheck.diff

21 months agoapparmor-mesa
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
apparmor-mesa

Gbp-Pq: Name apparmor-mesa.diff

21 months ago[PATCH] apparmor: use dri-enumerate abstraction
Vincas Dargis [Sat, 4 Aug 2018 14:40:05 +0000 (17:40 +0300)]
[PATCH] apparmor: use dri-enumerate abstraction

Remove backported rule and use new dri-enumerate abstraction instead.
dri-enumerate is available in AppArmor 2.13, which recently migrated
into Debian Buster.

Change-Id: I64919edc1882f7bc1e65cfb94686464c5350f699

Gbp-Pq: Name apparmor-cleanups.diff

21 months agoapparmor-allow-java.security
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
apparmor-allow-java.security

Gbp-Pq: Name apparmor-allow-java.security.diff

21 months agodo-not-hide-test-output
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
do-not-hide-test-output

Gbp-Pq: Name do-not-hide-test-output.diff

21 months agodisable-java-in-odk-build-examples-on-zero-vm
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
disable-java-in-odk-build-examples-on-zero-vm

Gbp-Pq: Name disable-java-in-odk-build-examples-on-zero-vm.diff

21 months agoappstream-ignore-startcenter
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
appstream-ignore-startcenter

Gbp-Pq: Name appstream-ignore-startcenter.diff

21 months agoHide startcenter and math from the shell
Olivier Tilloy [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Hide startcenter and math from the shell

Bug-Ubuntu: https://launchpad.net/bugs/1696250
Forwarded: not-needed

Gbp-Pq: Name hide-math-desktop-file.patch

21 months agoapparmor-complain
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
apparmor-complain

Gbp-Pq: Name apparmor-complain.diff

21 months agocppunit-optional
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
cppunit-optional

Gbp-Pq: Name cppunit-optional.diff

21 months agosystem-officeotron-and-odfvalidator
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
system-officeotron-and-odfvalidator

Gbp-Pq: Name system-officeotron-and-odfvalidator.diff

21 months agono-packagekit-per-default
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
no-packagekit-per-default

Gbp-Pq: Name no-packagekit-per-default.diff

21 months agohppa-is-32bit
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
hppa-is-32bit

Gbp-Pq: Name hppa-is-32bit.diff

21 months agojavadoc-optional
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
javadoc-optional

Gemeinsame Unterverzeichnisse: odk-old/config und odk/config.
Gemeinsame Unterverzeichnisse: odk-old/docs und odk/docs.
Gemeinsame Unterverzeichnisse: odk-old/examples und odk/examples.

Gemeinsame Unterverzeichnisse: odk-old/config und odk/config.
Gemeinsame Unterverzeichnisse: odk-old/docs und odk/docs.
Gemeinsame Unterverzeichnisse: odk-old/examples und odk/examples.

Gbp-Pq: Name javadoc-optional.diff

21 months agofix-internal-hsqldb-build
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
fix-internal-hsqldb-build

Gbp-Pq: Name fix-internal-hsqldb-build.diff

21 months agodisable-flaky-tests
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
disable-flaky-tests

14:13 < mst__> _rene_, the toolkit unoapi tests are known to be flaky (in some
               system dependent way) e.g. on the Win@6 tinderbox it always
               crashes
14:14 < mst__> _rene_, sc.ScAccessible* tests also fail on some systems some of
               the time

Gbp-Pq: Name disable-flaky-tests.diff

21 months agodebian-hardened-buildflags-no-LO-fstack-protector-strong
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
debian-hardened-buildflags-no-LO-fstack-protector-strong

don't hardcode -fstack-protector-strong in configure.ac/gbuild. We get the
hardening flags from dpkg-buildflags anyway.

Gbp-Pq: Name debian-hardened-buildflags-no-LO-fstack-protector-strong.diff

21 months agodebian-hardened-buildflags-CPPFLAGS
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
debian-hardened-buildflags-CPPFLAGS

Gbp-Pq: Name debian-hardened-buildflags-CPPFLAGS.diff

21 months agomediwiki-oor-replace
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
mediwiki-oor-replace

Gbp-Pq: Name mediwiki-oor-replace.diff

21 months agomake-package-modules-not-suck
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
make-package-modules-not-suck

Gbp-Pq: Name make-package-modules-not-suck.diff

21 months agojdbc-driver-classpaths
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
jdbc-driver-classpaths

Gbp-Pq: Name jdbc-driver-classpaths.diff

21 months agoreportdesign-mention-package
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
reportdesign-mention-package

Gbp-Pq: Name reportdesign-mention-package.diff

21 months agosensible-lomua
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
sensible-lomua

===================================================================

Gbp-Pq: Name sensible-lomua.diff

21 months agohelp-msg-add-package-info
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
help-msg-add-package-info

Gbp-Pq: Name help-msg-add-package-info.diff

21 months agomention-java-common-package
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
mention-java-common-package

Gbp-Pq: Name mention-java-common-package.diff

21 months agoinstall-fixes
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
install-fixes

Gbp-Pq: Name install-fixes.diff

21 months agobuild-against-shared-lpsolve
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
build-against-shared-lpsolve

Gbp-Pq: Name build-against-shared-lpsolve.diff

21 months agodebian-debug
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
debian-debug

Gbp-Pq: Name debian-debug.diff

21 months agosplit-evoab
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
split-evoab

Gbp-Pq: Name split-evoab.diff

21 months agojurt-soffice-location
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
jurt-soffice-location

commit b71107fb12e3c3125e0cb62c5a4f6636a80c6408
Author:     Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
AuthorDate: Tue Jun 7 11:52:37 2011 +0200
Commit:     Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
CommitDate: Tue Jun 7 11:52:37 2011 +0200

    on debian-based systems, we know where our soffice binary is

Gbp-Pq: Name jurt-soffice-location.diff

21 months agodebian-opt
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
debian-opt

Gbp-Pq: Name debian-opt.diff

21 months agono-check-if-root
Debian LibreOffice Maintainers [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
no-check-if-root

Gbp-Pq: Name no-check-if-root.diff

21 months agolibreoffice (4:7.4.7-1+deb12u3) bookworm; urgency=medium
Rene Engelhard [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
libreoffice (4:7.4.7-1+deb12u3) bookworm; urgency=medium

  * debian/patches/Fix-backup-copy-creation-for-files-on-mounted-samba-shares.diff:
    as name says, from 24.2.2+ (closes: #1069835)
  * debian/patches/fix-32bit-build.diff: as name says; fix 32bit build with
    above

  * debian/rules:
    - don't remove libforuilo.so in -core-nogui. (closes: #1059158)
      It's subsumed in libmerged on 64bit archs anyway which we definitely
      need to keep anyway (similar as libuuilo.so).
    - recommend kio >> 5.103.0-1 in -kf5

[dgit import unpatched libreoffice 4:7.4.7-1+deb12u3]

21 months agoImport libreoffice_7.4.7-1+deb12u3.debian.tar.xz
Rene Engelhard [Fri, 24 May 2024 19:06:45 +0000 (21:06 +0200)]
Import libreoffice_7.4.7-1+deb12u3.debian.tar.xz

[dgit import tarball libreoffice 4:7.4.7-1+deb12u3 libreoffice_7.4.7-1+deb12u3.debian.tar.xz]

23 months agoMerge libreoffice (4:7.4.7-1+deb12u2) import into refs/heads/workingbranch
Rene Engelhard [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
Merge libreoffice (4:7.4.7-1+deb12u2) import into refs/heads/workingbranch

23 months agoadd notify for script use
Caolán McNamara [Wed, 27 Mar 2024 17:07:20 +0000 (17:07 +0000)]
add notify for script use

Change-Id: I84af197cec7755f6803a578e1e21c03966ad5f3e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165412
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Gbp-Pq: Name add-notify-for-script-use.diff

23 months agowork-around-expired-certificiate-in-test
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
work-around-expired-certificiate-in-test

Gbp-Pq: Name work-around-expired-certificiate-in-test.diff

23 months agoreuse AllowedLinkProtocolFromDocument in impress/draw
Caolán McNamara [Wed, 22 Nov 2023 21:14:41 +0000 (21:14 +0000)]
reuse AllowedLinkProtocolFromDocument in impress/draw

Change-Id: I73ca4f087946a45dbf92d69a0dc1e769de9b5690
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159843
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit f0942eed2eb328b04856f20613f5226d66b66a20)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159759
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159884
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name reuse-AllowedLinkProtocolFromDocument-2.diff

23 months agoreuse AllowedLinkProtocolFromDocument in writer
Caolán McNamara [Wed, 15 Nov 2023 11:39:24 +0000 (11:39 +0000)]
reuse AllowedLinkProtocolFromDocument in writer

reorg calc hyperlink check to reuse elsewhere

Change-Id: I20ae3c5df15502c3a0a366fb4a2924c06ffac3d0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159487
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit e6a7537762e19fde446441edd10d301f9b37ce75)

reuse AllowedLinkProtocolFromDocument in writer

Change-Id: Iacf5e313fc6ca5f7d69ca6986a036f0e1ab1f2a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159488
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 32535dfa82200b54296838b52285c054fbe5e51d)

combine these hyperlink dispatchers into one call

Change-Id: Icb7822e811013de648ccf2fbb23a5f0be9e29bb0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159489
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 0df175ccc6ea542bc5801f631ff72bed187042eb)

we can have just one LoadURL for writer

Change-Id: Ia0162ee1c275292fcf200bad4662e4c2c6b7b972
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159557
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 521ca9cf6acbae96cf95d9740859c9682212013d)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159858
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
(cherry picked from commit e32b8601dbd63cf01497889601d6c9c1241106d6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159883

Gbp-Pq: Name reuse-AllowedLinkProtocolFromDocument-1.diff

23 months agodefault to ignoring libreoffice special-purpose protocols in calc hyperlink
Caolán McNamara [Fri, 3 Nov 2023 17:26:25 +0000 (17:26 +0000)]
default to ignoring libreoffice special-purpose protocols in calc hyperlink

Change-Id: Ib9f62be3acc05f24ca234dec0fec21e24579e9de
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158911
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit b6062623b4d69c79e90e9365ac7c5e7f11986793)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159045
Reviewed-by: Eike Rathke <erack@redhat.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159882
Tested-by: Miklos Vajna <vmiklos@collabora.com>
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name ignore-LO-special-purpose-hyperlinks-per-default.diff

23 months agowarn about exotic protocols as well
Caolán McNamara [Sat, 4 Nov 2023 19:57:51 +0000 (19:57 +0000)]
warn about exotic protocols as well

Change-Id: I50dcf4f36cd20d75f5ad3876353143268740a50f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151834
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 1305f70cff8a81a58a5a6d9c96c5bb032005389e)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159034
Reviewed-by: Eike Rathke <erack@redhat.com>
Signed-off-by: Xisco Fauli <xiscofauli@libreoffice.org>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159881
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Gbp-Pq: Name warn-about-exotic-protocols-as-well.diff

23 months agoadd some protocols that don't make sense as floating frame targets
Caolán McNamara [Fri, 3 Nov 2023 17:14:26 +0000 (17:14 +0000)]
add some protocols that don't make sense as floating frame targets

Change-Id: Id900a5eef248731d1184c1df501a2cf7a2de7eb9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158910
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
(cherry picked from commit 11ebdfef16501c6d35c3e3d0d62507f706557c71)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158900
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit bab433911bdecb344f7ea94dbd00690241a08c54)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159582

Gbp-Pq: Name floating-frame-targets-unneeded-protocols.diff

23 months agoescape url passed to gstreamer
Caolán McNamara [Fri, 3 Nov 2023 14:20:07 +0000 (14:20 +0000)]
escape url passed to gstreamer

Change-Id: I3c93ee34800cc8563370f75ef3ef6f8a9220e6ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/158894
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
(cherry picked from commit f41dcadf6492a6ffd32696d50f818e44355b9ad9)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/159583

Gbp-Pq: Name escape-url-passed-to-gstreamer.diff

23 months ago[PATCH] Remove dependency on BitArray.h from zxing-1.2.0
Brett T. Warden [Fri, 2 Dec 2022 20:06:35 +0000 (12:06 -0800)]
[PATCH] Remove dependency on BitArray.h from zxing-1.2.0

In zxing-1.4.0, numerous headers are no longer public. Rework the
ConvertToSVGFormat method so it uses bitmatrix.get instead of
bitmatrix.getRow, similar to the ToSVG method in zxing itself.

See https://github.com/zxing-cpp/zxing-cpp/issues/361

Gbp-Pq: Name 0004-Remove-dependency-on-BitArray.h-from-zxing-1.2.0.patch

23 months agoi18n: fix build with Boost 1.81.0
Đoàn Trần Công Danh [Sun, 27 Nov 2022 11:59:24 +0000 (18:59 +0700)]
i18n: fix build with Boost 1.81.0

Boost.Locale since 1.81.0 switch to enum classes for facet type [1].
Switch our resource manager accordingly.

1: https://github.com/boostorg/locale/commit/e5ed439ea39a4de915e9fb939cca95cae7d9d8d1

Change-Id: Ief215363ceb79b2019606b20a7cde55c8df6a042
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/143343
Reviewed-by: Heiko Becker <heirecka@exherbo.org>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
(cherry picked from commit 23dcd4339428e4080029ec5ae658e75f01e79a62)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144310
Reviewed-by: Danh Doan <congdanhqx@gmail.com>
Tested-by: Jenkins
Gbp-Pq: Name boost-1.81.diff

23 months agofix-system-libfixmath
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
fix-system-libfixmath

Gbp-Pq: Name fix-system-libfixmath.diff

23 months agodragonbox-1.1.3
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
dragonbox-1.1.3

Gbp-Pq: Name dragonbox-1.1.3.diff

23 months agoRelated: tdf#150011 Add HRK Croatian Kuna to Euro conversion wizard
Eike Rathke [Fri, 22 Jul 2022 20:17:11 +0000 (22:17 +0200)]
Related: tdf#150011 Add HRK Croatian Kuna to Euro conversion wizard

Maybe just for completeness, it's removed from menu but might be
callable as macro.

Change-Id: Iade0be845186d3deb2f00f4aaa230c0b344cea72
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137372
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Jenkins
Gbp-Pq: Name hrk-euro.diff

23 months agodo-not-ABORT_ON_NON_APPLICATION_FONT_USE
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
do-not-ABORT_ON_NON_APPLICATION_FONT_USE

Gbp-Pq: Name do-not-ABORT_ON_NON_APPLICATION_FONT_USE.diff

23 months agomoreIconsDialog-accesses-internet
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
moreIconsDialog-accesses-internet

Gbp-Pq: Name moreIconsDialog-accesses-internet.diff

23 months agoExplicitly set fpu mode on armhf
Rico Tzschichholz [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
Explicitly set fpu mode on armhf

Gbp-Pq: Name arm-fp-mode.diff

23 months agotemporarily-disable-test-metadata-test
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
temporarily-disable-test-metadata-test

Gbp-Pq: Name temporarily-disable-test-metadata-test.diff

23 months agoSupport tofu+pgp trust model in GnuPG
Benjamin Barenblat [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
Support tofu+pgp trust model in GnuPG

Bug-Debian: https://bugs.debian.org/955271
Forwarded: no

GnuPG supports a trust-on-first-use layer that sits on top of the
standard PGP trust model. If this is enabled, 'gpg --list-keys' needs
write and lock permissions on the TOFU database to return any useful
data. Allow this access through AppArmor.

Gbp-Pq: Name apparmor-gnupg-tofu.diff

23 months agoapparmor-updates
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
apparmor-updates

Gbp-Pq: Name apparmor-updates.diff

23 months ago[PATCH] Resolves: rhbz#1432468 disable opencl by default
Caolán McNamara [Mon, 27 Mar 2017 10:47:01 +0000 (11:47 +0100)]
[PATCH] Resolves: rhbz#1432468 disable opencl by default

Change-Id: Ie037fcabdd219f195425979dd721501fb5527573

Gbp-Pq: Name no-opencl-per-default.diff

23 months agodisable-shortcuts_tab_navigation-uitest
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
disable-shortcuts_tab_navigation-uitest

Gbp-Pq: Name disable-shortcuts_tab_navigation-uitest.diff

23 months agoadd-access2base-doc
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
add-access2base-doc

Gbp-Pq: Name add-access2base-doc.diff

23 months agoAdd safer float comparisons to bridgetest equals()
Marcus Tomlinson [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
Add safer float comparisons to bridgetest equals()

Bug-Ubuntu: https://launchpad.net/bugs/1832360

Gbp-Pq: Name fix-flaky-bridgetest.diff

23 months agoapparmor-opencl
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
apparmor-opencl

apparmor: Add opencl support

AppArmor in Debian Buster now has OpenCL abstractions.

Include OpenCL abstractions to fix OpenCL usage in Calc.

Gbp-Pq: Name apparmor-opencl.diff

23 months ago[PATCH] mariadb
Markus Koschany [Fri, 9 Nov 2018 22:06:15 +0000 (23:06 +0100)]
[PATCH] mariadb

Gbp-Pq: Name use-mariadb-java-instead-of-mysql-java.diff

23 months agodisableClassPathURLCheck
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
disableClassPathURLCheck

Gbp-Pq: Name disableClassPathURLCheck.diff

23 months agoapparmor-mesa
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
apparmor-mesa

Gbp-Pq: Name apparmor-mesa.diff

23 months ago[PATCH] apparmor: use dri-enumerate abstraction
Vincas Dargis [Sat, 4 Aug 2018 14:40:05 +0000 (17:40 +0300)]
[PATCH] apparmor: use dri-enumerate abstraction

Remove backported rule and use new dri-enumerate abstraction instead.
dri-enumerate is available in AppArmor 2.13, which recently migrated
into Debian Buster.

Change-Id: I64919edc1882f7bc1e65cfb94686464c5350f699

Gbp-Pq: Name apparmor-cleanups.diff

23 months agoapparmor-allow-java.security
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
apparmor-allow-java.security

Gbp-Pq: Name apparmor-allow-java.security.diff

23 months agodo-not-hide-test-output
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
do-not-hide-test-output

Gbp-Pq: Name do-not-hide-test-output.diff

23 months agodisable-java-in-odk-build-examples-on-zero-vm
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
disable-java-in-odk-build-examples-on-zero-vm

Gbp-Pq: Name disable-java-in-odk-build-examples-on-zero-vm.diff

23 months agoappstream-ignore-startcenter
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
appstream-ignore-startcenter

Gbp-Pq: Name appstream-ignore-startcenter.diff

23 months agoHide startcenter and math from the shell
Olivier Tilloy [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
Hide startcenter and math from the shell

Bug-Ubuntu: https://launchpad.net/bugs/1696250
Forwarded: not-needed

Gbp-Pq: Name hide-math-desktop-file.patch

23 months agoapparmor-complain
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
apparmor-complain

Gbp-Pq: Name apparmor-complain.diff

23 months agocppunit-optional
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
cppunit-optional

Gbp-Pq: Name cppunit-optional.diff

23 months agosystem-officeotron-and-odfvalidator
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
system-officeotron-and-odfvalidator

Gbp-Pq: Name system-officeotron-and-odfvalidator.diff

23 months agono-packagekit-per-default
Debian LibreOffice Maintainers [Mon, 1 Apr 2024 09:05:27 +0000 (11:05 +0200)]
no-packagekit-per-default

Gbp-Pq: Name no-packagekit-per-default.diff